* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
body {
	max-width: 1300px;
   margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #070018;
	color: #fff;
	padding-top: 60px;
}
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #171a2c;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;

}
.header_conatiner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 90px;
}
.header_logo img {
	height: 41px;
	width: 100%;
	object-fit: contain;
}
.header_button {
	display: flex;
	gap: 20px;
}
@media (max-width: 768px) {
	.header_button {
		gap: 8px;
	}
}

.btn {
	border: 1px solid #007500;
	display: inline-block;
	padding: 10px 20px;
	background-color: #007500;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: box-shadow 0.3s ease-in-out;
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0% { box-shadow: 0 0 5px #007500; }
	50% { box-shadow: 0 0 20px #007500; }
	100% { box-shadow: 0 0 5px #007500; }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background-color: #007500;
}
.button_2 {
	background-color: transparent;
}
.button_2:hover {
	background-color:#007500;
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.4;
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: bold;
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}
.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main p {
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.4;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #171a2c;
	color: #fff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 6px;
		gap: 10px;
		border-radius: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.476);
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 16px;
		right: 6px;
		top: 3px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #fff;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}


.casino-container {
    color: #fff;
    background-color: #000;
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
        margin-top: 50px;
}
}

.casino-section {
    margin-bottom: 40px;
}

.casino-title {
    color: #007500;
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 20px;
    line-height: 1.3;
}

.casino-subtitle {
    color: #007500;
    font-size: clamp(20px, 3vw, 24px);
    margin: 25px 0 15px 0;
    line-height: 1.3;
}

.casino-list {
    list-style: none;
    padding: 0;
    background-color: #111;
    border-radius: 5px;
    padding: 20px;
}

.casino-list li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: clamp(14px, 2vw, 16px);
}

.casino-list li:last-child {
    border-bottom: none;
}

.cta-button {
    background-color: #007500;
    color: #fff;
    border: none;
    padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 30px);
    font-size: clamp(16px, 2.5vw, 18px);
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.cta-button:hover {
    background-color: #009900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 117, 0, 0.3);
}

.secondary-button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 25px);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    font-size: clamp(14px, 2vw, 16px);
    text-align: center;
}

.secondary-button:hover {
    background-color: #444;
    transform: translateY(-1px);
}

.mirror-section {
    padding: clamp(15px, 3vw, 20px);
    border: 2px solid #007500;
    border-radius: 10px;
}

.registration-steps {
    background-color: #111;
    padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 40px);
    border-radius: 5px;
    margin: 20px 0;
}

.registration-steps li {
    padding: 8px 0;
    font-size: clamp(14px, 2vw, 16px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(10px, 2vw, 15px);
    margin: 20px 0;
}

.game-card {
    background-color: #111;
    padding: clamp(12px, 2vw, 15px);
    border-radius: 5px;
    text-align: center;
}

.game-button {
    background-color: #007500;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    font-size: clamp(14px, 2vw, 16px);
}

.game-button:hover {
    background-color: #009900;
}

.login-section {
    text-align: center;
    padding: clamp(20px, 4vw, 30px);
    background-color: #111;
    border-radius: 10px;
}

/* Адаптивные таблицы */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.reviews-table, .winnings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111;
    min-width: 600px;
}

.reviews-table th, .winnings-table th {
    background-color: #007500;
    color: #fff;
    padding: clamp(10px, 2vw, 15px);
    text-align: left;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
}

.reviews-table td, .winnings-table td {
    padding: clamp(8px, 1.5vw, 12px) clamp(10px, 2vw, 15px);
    border-bottom: 1px solid #333;
    font-size: clamp(12px, 1.8vw, 14px);
}

.reviews-table tr:hover, .winnings-table tr:hover {
    background-color: #222;
}

.rating {
    color: #ffd700;
    font-weight: bold;
}

.win-amount {
    color: #007500;
    font-weight: bold;
}

.centered {
    text-align: center;
}

.highlight {
    color: #007500;
    font-weight: bold;
}

.bonus-badge {
    background-color: #007500;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: clamp(12px, 1.8vw, 14px);
    margin-left: 8px;
    display: inline-block;
}

.bonus-section {
    background: linear-gradient(135deg, #007500, #009900);
    padding: clamp(20px, 4vw, 25px);
    border-radius: 10px;
    text-align: center;
    margin: 25px 0;
}

.bonus-section h3 {
    color: #fff;
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 15px;
}

.bonus-text {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: bold;
    margin: 15px 0;
}

.buttons-group {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
    margin: 20px 0;
}

/* Мобильная адаптация для очень маленьких экранов */
@media (max-width: 480px) {
    .casino-container {
        padding: 15px 10px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary-button {
        width: 100%;
        max-width: 250px;
    }
    
    .casino-list {
        padding: 15px;
    }
    
    .registration-steps {
        padding: 15px 20px;
    }
}

/* Адаптация для средних экранов */
@media (max-width: 768px) {
    .reviews-table th, 
    .reviews-table td,
    .winnings-table th,
    .winnings-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .table-container {
        border: 1px solid #333;
        border-radius: 5px;
    }
}

/* Улучшение читаемости на очень больших экранах */
@media (min-width: 1400px) {
    .casino-container {
        max-width: 1300px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Анимации для плавности */
.cta-button, .secondary-button, .game-button {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Улучшение доступности для касаний на мобильных */
@media (hover: none) {
    .cta-button:hover, 
    .secondary-button:hover, 
    .game-button:hover {
        transform: none;
        background-color: #007500;
    }
    
    .cta-button:active, 
    .secondary-button:active, 
    .game-button:active {
        transform: scale(0.98);
        background-color: #006400;
    }
}

/* Адаптивный текст */
.casino-container p {
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.5;
    margin-bottom: 15px;
}